.main_contact {
  background: #000;
  color: #fff;
  padding: 1rem 1rem;
  font-family: Arial, sans-serif;
}

.contact_container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.head-er {
  text-align: center;
  margin-top: 180px;
  margin-bottom: 60px;
}

.head-er h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700; /* Yellow highlight */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.head-er p {
  font-size: 1.2rem;
  color: #ccc;
  font-weight: 400;
}

.contact_form, .contact_info {
  /* background: #111; */
  /* border: 1px solid rgba(255, 215, 0, 0.2); */
  border-radius: 10px;
  padding: 2rem;
  flex: 1 1 450px;
  /* box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); */
  background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.contact_form h2 span {
  color: #FFD700;
  margin-bottom: 10px;
    background: linear-gradient(90deg, #facc15, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
    font-weight: 600;
}

.input_grid {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.input_grid input {
  flex: 1;
}

.input_grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form_field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #f8f8f8;
}


.contact_form input,
.contact_form select,
.contact_form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 8px;
  border: none;
  background: #222;
  color: #fff;
  margin-bottom: 1rem;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}

.contact_form button {
  background: linear-gradient(to right, #FFD700, #ffcc00);
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.contact_info .card {
  border: 1px solid rgba(255, 215, 0, 0.1);
  background: #111;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.contact_info .card h3 {
  margin-bottom: 1rem;
  color: #fff;
}

.contact_info .card a {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.6rem;
  border-radius: 9999px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  text-align: center;
}

.whatsapp, .call {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Adds space between icon and text */
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp {
  background-color: #25D366;
  color: white;
}

.call {
  background-color: transparent;
  border: 1px solid #facc15; /* yellow-ish border */
  color: #facc15;
}

/* Optional: Set icon size to match text */
.whatsapp svg,
.call svg {
  height: 1em;
  width: 1em;
  vertical-align: middle;
}


.call {
  background: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  margin-bottom: 0.5rem;
  color: #ccc;
}

.card ul li span {
  color: #FFD700;
  float: right;
}

.support_stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.support_stats li {
  flex: 1 1 45%;
  margin-bottom: 1rem;
}

.support_stats strong {
  font-size: 1.3rem;
  color: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
  .contact_container {
    flex-direction: column;
  }

  .input_grid {
    flex-direction: column;
  }
}
.card button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

/* WhatsApp Chat (Green Filled) */
.card .whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
}

.card .whatsapp:hover {
  background-color: #1ebe57;
}

/* Schedule a Call (Yellow Outline) */
.card .call {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.card .call:hover {
  background-color: #FFD700;
  color: #000;
}
.card svg {
  width: 1.2rem;
  height: 1.2rem;
}
